home *** CD-ROM | disk | FTP | other *** search
/ FishMarket 1.0 / FishMarket v1.0.iso / fishies / 126-150 / disk_126 / suplib / typedefs.h < prev    next >
C/C++ Source or Header  |  1992-05-06  |  3KB  |  134 lines

  1.  
  2. /*
  3.  * TYPEDEFS.H
  4.  */
  5.  
  6. #ifndef MYLIB_TYPEDEFS_H
  7. #define MYLIB_TYPEDEFS_H
  8. #ifdef INTUITION_INTUITION_H
  9.  
  10. typedef struct BitMap        BITMAP;
  11. typedef struct BoolInfo     BOOLINFO;
  12. typedef struct Border        BORDER;
  13. typedef struct Gadget        GADGET;
  14. typedef struct Image        IMAGE;
  15. typedef struct IntuiMessage INTUIMESSAGE;
  16. typedef struct IntuiMessage IMESS;
  17. typedef struct IntuiText    INTUITEXT;
  18. typedef struct IntuiText    ITEXT;
  19. typedef struct Menu        MENU;
  20. typedef struct MenuItem     MENUITEM;
  21. typedef struct MenuItem     ITEM;
  22. typedef struct NewScreen    NEWSCREEN;
  23. typedef struct NewScreen    NS;
  24. typedef struct NewWindow    NEWWINDOW;
  25. typedef struct NewWindow    NW;
  26. typedef struct Preferences  PREFERENCES;
  27. typedef struct Preferences  PREFS;
  28. typedef struct PropInfo     PROPINFO;
  29. typedef struct RastPort     RASTPORT;
  30. typedef struct RastPort     RP;
  31. typedef struct Remember     REMEMBER;
  32. typedef struct Requester    REQUESTER;
  33. typedef struct Screen        SCR;
  34. typedef struct StringInfo   STRINGINFO;
  35. typedef struct Window        WINDOW;
  36. typedef struct Window        WIN;
  37.  
  38. #endif
  39.  
  40. #ifdef INTUITION_INTUITIONBASE_H
  41.  
  42. typedef struct GListEnv     GLISTENV;
  43. typedef struct GadgetInfo    GADGETINFO;
  44. typedef struct IBox        IBOX;
  45. typedef struct IntuitionBase    INTUITIONBASE;
  46. typedef struct IntuitionBase    IBASE;
  47. typedef struct PenPair        PENPAIR;
  48. typedef struct Point        POINT;
  49.  
  50. #endif
  51.  
  52. #ifdef DEVICES_AUDIO_H
  53.  
  54. typedef struct IOAudio        IOAUDIO;
  55. typedef struct IOAudio        IOA;
  56.  
  57. #endif
  58.  
  59. #ifdef DEVICES_BOOTBLOCK_H
  60.  
  61. typedef struct BootBlock    BOOTBLOCK;
  62.  
  63. #endif
  64.  
  65. #ifdef DEVICES_CLIPBOARD_H
  66.  
  67. typedef struct IOClipReq    IOCLIPREQ;
  68. typedef struct IOClipReq    IOCL;
  69. typedef struct ClipboardUnitPartial CLIPUNIT;
  70. typedef struct SatisfyMsg    SATISFYMSG;
  71.  
  72. #endif
  73.  
  74. #ifdef DEVICES_CONUNIT_H
  75.  
  76. typedef struct ConUnit        CONUNIT;
  77. typedef struct IOStdReq     IOCON;
  78.  
  79. #endif
  80.  
  81. #ifdef DEVICES_INPUTEVENT_H
  82.  
  83. typedef struct InputEvent   INPUTEVENT;
  84. typedef struct InputEvent   IE;
  85.  
  86. #endif
  87.  
  88. #ifdef GRAPHICS_TEXT_H
  89.  
  90. typedef struct TextAttr TA;
  91. typedef struct TextFont FONT;
  92.  
  93. #endif
  94.  
  95. #ifdef GRAPHICS_GELS_H
  96.  
  97. typedef struct VSprite    VS;
  98. typedef struct Bob    BOB;
  99. typedef struct AnimComp ANIMCOMP;
  100. typedef struct AnimOb    ANIMOB;
  101.  
  102. #endif
  103.  
  104. #ifdef GRAPHICS_RASTPORT_H
  105.  
  106. typedef struct GelsInfo GELSINFO;
  107.  
  108. #endif
  109.  
  110. #ifdef GRAPHICS_VIEW_H
  111.  
  112. typedef struct ViewPort VP;
  113.  
  114. #endif
  115.  
  116. #ifdef LIBRARIES_DOS_H
  117.  
  118. typedef struct Process        PROC;
  119. typedef struct Task        TASK;
  120. typedef struct FileInfoBlock    FIB;
  121.  
  122. #endif
  123.  
  124. #ifdef DEVICES_TIMER_H
  125.  
  126. typedef struct timeval        TV;
  127. typedef struct timerequest    TIMER;
  128.  
  129. #endif
  130.  
  131. #endif
  132.  
  133.  
  134.